home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 March / CMCD0305.ISO / Software / Shareware / Utilitare / emu / Emu8086_Setup_307c.exe / {app} / Samples / traffic_lights.asm < prev    next >
Encoding:
Assembly Source File  |  2002-08-02  |  400 b   |  22 lines

  1. #MAKE_BIN#
  2. #CS = 500#
  3. #IP = 0#
  4.  
  5. ; This is a sample of OUT instruction.
  6. ; It writes values to virtual I/O port
  7. ; of Traffic Lights Intersection, by
  8. ; setting bits we can turn off/on
  9. ; the lights. Your task will be to
  10. ; to improve it, and make it work just
  11. ; like real Traffic Lights System :)
  12.  
  13. MOV AX, 1
  14.  
  15. next_situation:
  16.  
  17. OUT 4, AX
  18.  
  19. ROL AX, 1    ; rotate bit.
  20.  
  21. JMP next_situation
  22.